home *** CD-ROM | disk | FTP | other *** search
/ Exame Informatica 140 / Exame Informatica 140.iso / Programas / Zsnes / docs / readme.htm / styles / jipcy.css < prev    next >
Encoding:
Cascading Style Sheet File  |  2006-12-21  |  2.5 KB  |  143 lines

  1. /*    MAIN LAYOUT    */
  2.  
  3. /*    ALL PROPERTIES ARE ALPHABETIZED!!!  KEEP THEM THAT WAY!!!    */
  4.  
  5. @import url(shared.css);          /*    Loads styles/shared.css, which contains shared styling information.    */
  6. @import url(release.css);          /*    Loads styles/release.css, which contains styling information specific to public releases of the docs.    */
  7.  
  8. body {
  9.   background-color: white;
  10.   color: black;
  11.   font-family: Verdana, "Arial Unicode MS", Arial, sans-serif;
  12.   margin: 0em;          /*    Removes default ~0.5em margin between the body and the view port.    */
  13. }
  14.  
  15. a img {
  16.   border-width: 0px;
  17. }
  18.  
  19. #header {
  20.   background-color: #C8CFD8;
  21.   border-bottom: solid 1em #00CC99;
  22.   color: inherit;
  23. }
  24.  
  25. #header #logo {
  26.   margin: 5px 7px 0px 7px;          /*    Compensates for the apparent non-centering in the logo image itself.    */
  27. }
  28.  
  29. #header h1 {
  30.   display: inline;
  31.   margin-left: 1em;
  32.   text-align: right;
  33. }
  34.  
  35. #nav_column {
  36.   float: left;
  37.   margin: 1em;
  38.   width: 15em;
  39. }
  40.  
  41. #navigation {
  42.   border: solid 1px #00CC99;
  43. }
  44.  
  45. #navigation h2, #content h2, #content h3 {
  46.   background-color: #00CC99;
  47.   color: inherit;
  48.   margin: 0px 0px 1px 0px;
  49.   padding: 0.1em 0.5em 0.1em 0.5em;
  50. }
  51.  
  52. #navigation a:hover, #content a:hover {
  53.   background-color: #00CC99;
  54.   color: inherit;
  55. }
  56.  
  57. #navigation ul {
  58.   list-style-type: none;
  59.   margin: 0em;
  60.   padding-left: 0.5em;
  61. }
  62.  
  63. #navigation ul li {
  64.   font-weight: bold;
  65.   margin: 0.3em 0em 0.3em 0em;
  66. }
  67.  
  68. #navigation ul ul {
  69.   margin-top: 0.45em;
  70.   padding-left: 1.2em;
  71. }
  72.  
  73. #navigation ul ul li {
  74.   font-weight: normal;
  75.   margin: 0em;
  76. }
  77.  
  78. #navigation ul ul a {
  79.   text-decoration: none;
  80. }
  81.  
  82. #content_column {
  83.   margin: 1em 1em 1em 17em;
  84.   min-width: 40em;
  85. }
  86.  
  87. #content {
  88.   border-bottom: solid 3px black;
  89.   max-width: 60em;
  90.   margin: auto;
  91.   padding-bottom: 1em;
  92. }
  93.  
  94. #content h4 {
  95.   background-color: #00FFCC;
  96.   color: inherit;
  97.   margin: 0px 0px 1px 0px;
  98.   padding: 0.2em 1.5em 0.2em 1.5em;
  99. }
  100.  
  101. #content h5 {
  102.   margin-bottom: -1em;
  103. }
  104.  
  105. #content img {
  106.   margin-bottom: 0.5em;
  107.   margin-top: 0.5em;
  108. }
  109.  
  110. #footer {
  111.   clear: both;          /*    This is mainly for pages that might be shorter than the nav-list on the left.  Keeps things looking correct.    */
  112.   font-size: 0.7em;
  113.   font-weight: bold;
  114.   text-align: center;
  115. }
  116.  
  117. #footer h2 {
  118.   display: none;
  119. }
  120.  
  121. /*    Use <dt></dt> for a FAQ question.    */
  122. dt {
  123.   font-weight: bold;
  124.   margin-left: 1.5em;
  125.   text-indent: -1.5em;
  126. }
  127.  
  128. /*    Use <dd></dd> for a FAQ answer.    */
  129. dd {
  130.   margin-bottom: 1em;
  131.   margin-left: 1.5em;
  132.   text-indent: -1.5em;
  133. }
  134.  
  135. dd p {
  136.   margin-top: 1em;
  137.   text-indent: 0em;
  138. }
  139.  
  140. dd ul {
  141.   text-indent: 0em;
  142. }
  143.